home *** CD-ROM | disk | FTP | other *** search
/ Diccionario Visual Trilingue / VISUAL.iso / STARTUP.DIR / 00007_Frame control button.ls < prev    next >
Encoding:
Text File  |  1997-07-04  |  348 b   |  20 lines

  1. on keyDown
  2.   set the castNum of sprite 2 to the castNum of sprite 2 + 1
  3.   updateStage()
  4.   startTimer()
  5.   repeat while the timer < 10
  6.     nothing()
  7.   end repeat
  8.   set the castNum of sprite 2 to the castNum of sprite 2 - 1
  9.   updateStage()
  10.   GoToMain()
  11. end
  12.  
  13. on exitFrame
  14.   if the timer < 1200 then
  15.     go(the frame)
  16.   else
  17.     GoToMain()
  18.   end if
  19. end
  20.